home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / misc / tri14dev.lha / Triton / Developer / DemoSource / SMakefile < prev    next >
Makefile  |  1995-08-25  |  935b  |  47 lines

  1. #
  2. #  Triton - The object oriented GUI creation system for the Amiga
  3. #  Written by Stefan Zeiger in 1993-1995
  4. #
  5. #  (c) 1993-1995 by Stefan Zeiger
  6. #  You are hereby allowed to use this source or parts of it for
  7. #  creating programs for AmigaOS which use the Triton GUI creation
  8. #  system. All other rights reserved.
  9. #
  10. #  SMakefile - Makefile for SAS/C SMake
  11. #
  12.  
  13.  
  14. CC    = sc
  15.  
  16. CFLAGS    = LINK LIB=lib:triton.lib NOICONS
  17.  
  18. all: Demo EnvPrint trLogo ToolManager1 ToolManager2 ToolManager3 ProgInd
  19.  
  20. Demo: Demo.c
  21.     @$(CC) $(CFLAGS) $@
  22.     delete $@.o $@.lnk
  23.  
  24. EnvPrint: EnvPrint.c
  25.     @$(CC) $(CFLAGS) $@
  26.     delete $@.o $@.lnk
  27.  
  28. trLogo: trLogo.c
  29.     @$(CC) $(CFLAGS) $@
  30.     delete $@.o $@.lnk
  31.  
  32. ToolManager1: ToolManager1.c
  33.     @$(CC) $(CFLAGS) $@
  34.     delete $@.o $@.lnk
  35.  
  36. ToolManager2: ToolManager2.c
  37.     @$(CC) $(CFLAGS) $@
  38.     delete $@.o $@.lnk
  39.  
  40. ToolManager3: ToolManager3.c
  41.     @$(CC) $(CFLAGS) $@
  42.     delete $@.o $@.lnk
  43.  
  44. ProgInd: ProgInd.c
  45.     @$(CC) $(CFLAGS) $@
  46.     delete $@.o $@.lnk
  47.